From c8c2116e93ef6c31afa56a7ac94f6c81ef4ae9e6 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 9 Feb 2009 12:50:12 +0000 Subject: [PATCH] [IA64] fix compilation error of iommu.c This patch fixes the following compilation error on ia64 caused by 19178:4fcf4c9c9751. Signed-off-by: Isaku Yamahata --- xen/include/asm-ia64/hvm/iommu.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xen/include/asm-ia64/hvm/iommu.h b/xen/include/asm-ia64/hvm/iommu.h index f8f01d9d6a..2a83da93a3 100644 --- a/xen/include/asm-ia64/hvm/iommu.h +++ b/xen/include/asm-ia64/hvm/iommu.h @@ -28,7 +28,10 @@ static inline void pci_cleanup_msi(struct pci_dev *pdev) /* TODO */ } -#define AUTO_ASSIGN -1 +/* Special IRQ numbers */ +#define AUTO_ASSIGN (-1) +#define NEVER_ASSIGN (-2) +#define FREE_TO_ASSIGN (-3) extern int assign_irq_vector (int irq); -- 2.30.2